home *** CD-ROM | disk | FTP | other *** search
/ European High School Girl / European High School Girl.iso / pc / prg / sofie.dxr / 00086.ls < prev    next >
Encoding:
Text File  |  1996-03-08  |  554 b   |  25 lines

  1. on mouseDown
  2.   global autoflg, framecnt, gcnt, no_cat, max
  3.   set the ink of sprite 22 to 4
  4.   updateStage()
  5.   repeat while the stillDown
  6.     nothing()
  7.   end repeat
  8.   set the ink of sprite 22 to 8
  9.   updateStage()
  10.   if autoflg = 1 then
  11.     set autoflg to 0
  12.     set the timeoutScript to EMPTY
  13.   end if
  14.   set framecnt to 1 + framecnt
  15.   if framecnt > max then
  16.     go("S08ST")
  17.     set framecnt to 1
  18.   else
  19.     go(marker(1))
  20.   end if
  21.   set gcnt to value(getAt(no_cat, framecnt))
  22.   set the movieRate of sprite 20 to 0
  23.   set the movieTime of sprite 20 to gcnt
  24. end
  25.